:root {
  --primary-clr1: #e53935;
  --primary-clr2: #e50c08;
  --secondary-clr1: #171718;
  --secondary-clr2: #d9d9d9;
  --secondary-clr3: #ffd2d0;
  --tertiary-clr1: #ffffff;
  --tertiary-clr2: #000000;

  --primarybg-color1: #f8f8f8;
  --primarybg-color2: #ffffff;

  --ease: 0.2s ease;
}

.main-section {
  height: auto;
  background-color: var(--primarybg-color1);
}
.client-enjuiry{
  width: 100%;
}

.form-container {
  background-color: var(--primarybg-color2);
}

.personal-input {
  display: block;
  padding: 0.9rem 0.75rem;
  font-size: 0.8rem;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--primary-clr1);
  border-radius: 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.cancel-btn {
  border: 1px solid var(--primary-clr1);
  border-radius: 0.7rem;
  background-color: transparent;
  font-size: 14px;
  font-weight: bold;
  color: var(--secondary-clr1);
  padding: 0.5rem 2rem;
  transition: var(--ease);
}

.cancel-btn:hover {
  color: var(--tertiary-clr1);
  background-color: var(--primary-clr2);
}

/* ___________________________________________________________________________________________________ */
/* General styling */
.telephone-input-wrapper {
  background-color: #fff;
  position: relative;
}

.country-code-dropdown {
  display: inline-block;
  min-width: 70px;
  cursor: pointer;
}

.country-dropdown-list {
  display: none;
  background-color: #fff;
  border: 1px solid #eceff1;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
}

.country-dropdown-list .dropdown-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* Show dropdown list */
.country-code-dropdown.active .country-dropdown-list {
  display: block;
}

.add-informationnnn {
  width: 100%;
  border: 1px solid #e53935;
  border-radius: 12px;
  padding: 1rem 0rem 0 0;
  
}
.enquiry-table{
  border: 1px solid var(--primary-clr1);
 border-radius: 10px;
 overflow: hidden;
 width: auto;
 
}
.enquiry-overlay-table{
  margin-left: 2px;
}

.client-form-check-input:checked{
  background-color: var(--primary-clr1);
}
.client-form-custom-checkbox{
  accent-color: var(--primary-clr1);
}
.client-table-data-1{
  display: flex;
  justify-content: center;
}


@media (min-width:320px) and (max-width:767px){
  .enquiry-table{
    width: auto;
    overflow: scroll;

  }
  ::-webkit-scrollbar{
    display: none;
  }
  .client-table-row {
    display: flex;
    justify-content: center;
  }
}